home *** CD-ROM | disk | FTP | other *** search
- //-------------------------------------------------------------------
- //
- // int2str
- //
- // Syntax: s = int2str(n)
- //
- // This routine converts the integer n to a string which
- // is returned.
- //
- // Original Author: Jeff Layton
- //-------------------------------------------------------------------
-
- int2str = function(n)
- {
- sprintf(s,"%.0f",n);
- return s;
- };
-